home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 1 / Cream of the Crop 1.iso / PROGRAM / KSLIB11.ARJ / CMOS.H < prev    next >
Text File  |  1991-10-28  |  110b  |  5 lines

  1. #define bcd2bin(x) (((x) >> 4) & 0x0f)*10+((x) & 0x0f)
  2.  
  3. int        readcmos(int port);
  4. void    updateclock(void);
  5.